{% for room, students in student_groups.items() %} {% include 'supervision_list.html' %}
{% set students_sorted_by_seat = students | sort(attribute='seat') %} {% for student in students_sorted_by_seat %}
{% include "sheets/seating_sheet.html" %}
{% include "sheets/login_sheet.html" %}
{% include "sheets/take_home_sheet.html" %}
{% include "sheets/notes_sheet.html" %}
{% endfor %} {% endfor %}